Mac's come with telnet and ssh built in. Start a terminal window and type "telnet hostname" or "ssh hostname" to start a session.
Windows users should use "putty". Instructions for LACC students are here.
login: jimp Password: Last login: Sat Nov 11 17:40:28 from 204.137.205.102 Copyright 1992, 1993, 1994, 1995 Berkeley Software Design, Inc. Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. cellini %Note the parts of the session: login, I type my username, then password, I answer with my (secret) password, then the computer comes back with the date, the copyright of the operating system, a note that I have some mail and a cute quote before brining up the system prompt (in this case it's "cellini" but this varies from computer to computer even at Brand X Internet.)
To log in you need to use your username and password. Here's an example. Note that the password is not echoed, but you do have to type it in. Note also that you can not use a PPP username to log in to Unix session.
BSDI BSD/OS 2.0 (brandx.net) (ttyp1)
login: jimp
Password:
Last login: Sun Aug 4 17:23:32 from A00.brandx.net
Copyright 1992, 1993, 1994, 1995 Berkeley Software Design, Inc.
Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994
The Regents of the University of California. All rights reserved.
BSDI BSD/OS 2.0 Kernel #0: Fri Feb 3 17:51:37 MST 1995
Use of this software is governed by the BSDI End User Software License.
Brand X %
Brand X % ls .README .Xresources-mosaic .mailrc .Xmodmap .Xresources-xterm .profile Brand X %
Brand X % ls -al total 76 drwxr-xr-x 2 david user 512 Jul 10 22:21 . drwxrwxr-x 1352 root wheel 22016 Aug 3 17:00 .. -rw-r--r-- 1 david user 2046 Apr 4 22:29 .README -rw-r--r-- 1 david user 1262 Jul 10 21:06 .cshrc -rw-r--r-- 1 david user 1951 Apr 4 22:29 .fvwmfmgr Brand X %As you look at the above file listings, you will see the following columns:
access permissions, owner, group, size, modification date, name For example, check the listings for .README:
Access: -rw-r--r-- Owner: david Group: user Size: 2046 Modification Date: Apr 4 22:29 Name: .README
Brand X % pwd /usr/home/david Brand X %
Brand X % ls -al -rw-r--r-- 1 root user 0 Aug 4 17:46 myfile Brand X % mv myfile yourfile Brand X % ls -al -rw-r--r-- 1 root user 0 Aug 4 17:46 yourfile Brand X %Note that when we listed out the files, we found the file was there with the new name.
Brand X % ls -al myfile -rw-r--r-- 1 root user 0 Aug 4 17:46 myfile Brand X % rm myfile Brand X % ls -al myfile Brand X %Note that when we listed the files, it showed nothing.
Brand X % mkdir testdirectory Brand X % ls -al total 77 drwxr-xr-x 3 jimp wheel 512 Aug 4 18:22 . drwxrwxr-x 1352 root wheel 22016 Aug 3 17:00 .. drwxr-xr-x 2 jimp wheel 512 Aug 4 18:22 testdirectory
Brand X % rm -r testdirectory Brand X % ls -al total 77 drwxr-xr-x 3 jimp wheel 512 Aug 4 18:22 . drwxrwxr-x 1352 root wheel 22016 Aug 3 17:00 .. Brand X %
Use the arrow keys or enter to go places. q=quit g=go to a page.
We will add more complete instructions later.
For example I will call my file "jimpickrell.html"
So to start joe for this file I will type
joe jimpickrell.htmlOnce you have started the file, you will type up a short bio page. Include your name, your email address, your hometown, your education, your occupation.
Then add some personal information: Your hobbies, your favorite storts teams, your favorite food and restauarant.
Finally add some things you don't like, for example, I don't like eating vegetables and I don't like parking tickets.
We will format this as a web page. That means you should type formatting commands before things that need to be formatted. For example the header should look like this:
(h1)Header(/h1) And you should put (P) at the end of each paragraph.Note: I have substituted parenthesis, you should use angle brackets in the above examples.
Finally view your new web page Here If the page looks good then you are doing well!